home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Resource for Source: C/C++
/
Resource for Source - C-C++.iso
/
codelib1
/
v_01_05
/
1n05048a
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1995-11-01
|
183 b
|
20 lines
enum etype {e1, e2, e3};
struct stype
{
int a;
float b;
};
union utype
{
long l;
float f;
};
enum etype evar;
struct stype svar;
union utype uvar;